home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog8 < prev    next >
Text File  |  1995-06-29  |  323b  |  15 lines

  1. # test Boolean to string converter
  2. xtAppInitialize -class Program
  3.  
  4. xmLabel .label managed
  5. .label setValues -recomputeSize False
  6. .label getValues -recomputeSize x
  7. puts "should be false, is: $x"
  8. .label setValues -recomputeSize True
  9. .label getValues -recomputeSize x
  10. puts "should be true, is: $x"
  11.  
  12. . realizeWidget
  13.  
  14. . mainLoop
  15.